home *** CD-ROM | disk | FTP | other *** search
/ Logiciels PC 18 / LOGICIELSPC_18.ISO / Accuses / MAJ / Rtf2Html / Source C / LIB / HEXAPLUS.H < prev    next >
Text File  |  1999-06-27  |  371b  |  23 lines

  1. /*
  2.  *
  3.  * http://perso.wanadoo.fr/blq
  4.  * blq@wanadoo.fr
  5.  */
  6.  
  7. typedef struct hexa_plus {
  8.     char * hexa_plus;        /* token du code hexa non identifie */
  9.     char * hexa_ansi;        /* token du code hexa equivalent ANSI */
  10. } HexaPlus;
  11.  
  12. HexaPlus HexaPlusMap [] = {
  13.     "88",    "e0",
  14.     "89",    "e2",
  15.     "8e",    "e9",
  16.     "8f",    "e8",
  17.     "90",    "e4",
  18.     "",    "",
  19.  
  20.     (char *)0,    (char *)0
  21. };
  22.  
  23.